home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / os2 / ssaver26.zip / SAMPLE.ZIP / BCCDLL0.ASM next >
Assembly Source File  |  1996-02-26  |  360b  |  22 lines

  1. .386
  2. _TEXT    segment dword use32 public 'CODE'    ;size is 20
  3. _TEXT    ends
  4. _DATA    segment dword use32 public 'DATA'    ;size is 0
  5.     __os2hmod    dd    0
  6. _DATA    ends
  7. FLAT    group    
  8.     public    __os2hmod
  9.     extrn    _DLL_InitTerm
  10.  
  11. ;    public    _text
  12. _TEXT    segment
  13. MODEL OS2 FLAT
  14. .startup
  15. _textstart:
  16.         mov    eax, 4[esp]
  17.         mov    [__os2hmod], eax
  18.         mov    eax, 1
  19.         ret
  20. _TEXT    ends
  21.     end
  22.